Python

您所在的位置:网站首页 php getcwd Python

Python

2023-03-31 18:15| 来源: 网络整理| 查看: 265

OS module in Python provides functions for interacting with the operating system. OS comes under Python鈥檚 standard utility modules. This module provides a portable way of using operating system dependent functionality.All functions in os module raise OSError in the case of invalid or inaccessible file names and paths, or other arguments that have the correct type, but are not accepted by the operating system.os.getcwd() method tells us the location of current working directory (CWD).

Syntax: os.getcwd()

Parameter: No parameter is required.

Return Value: This method returns a string which represents the current working directory.

Example #1 :

Using os.getcwd() method to get current working directory

# Python program to explain os.getcwd() method         # importing os module import os     # Get the current working # directory (CWD) cwd = os.getcwd()     # Print the current working  # directory (CWD) print("Current working directory:", cwd) Output: Current working directory: C:\Users\Rajnish\AppData\Local\Programs\Python\Python37

Example #2 :Using os.getcwd() method to get current working directory of GeeksforGeeks which is root

# Python program to explain os.getcwd() method         # importing os module import os     # Get the current working # directory (CWD) cwd = os.getcwd()     # Print the current working  # directory (CWD) # which is root in this caseprint("Current working directory:", cwd) Output: Current working directory: / My Personal Notes arrow_drop_upLike Article Save Article Please Login to comment...Related Articles1. Difference between Method Overloading and Method Overriding in Python2. Class method vs Static method in Python3. Python Dictionary get() Method4. Python | os._exit() method5. Python | os.WEXITSTATUS() method6. Python | os.abort() method7. Python | os.renames() method8. Python | os.lseek() method9. Python calendar module : formatmonth() method10. Python | PyTorch sin() methodNext Python os.chdir() methodArticle Contributed By :https://media.geeksforgeeks.org/auth/avatar.pngRajnis09@Rajnis09Vote for difficultyCurrent difficulty : Easy Article Tags :python-os-modulePythonPractice Tags :pythonReport Issue


【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3